home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / idioms.lha / idioms / 2const.c < prev    next >
C/C++ Source or Header  |  1993-08-08  |  286b  |  15 lines

  1. /* Copyright (c) 1992 by AT&T Bell Laboratories. */
  2. /* Advanced C++ Programming Styles and Idioms */
  3. /* James O. Coplien */
  4. /* All rights reserved. */
  5.  
  6. static const int SIZE1 = 10;
  7.  
  8. class C {
  9.     static const int SIZE2;
  10.     char vec1[SIZE1];
  11. //    char vec2[SIZE2];
  12. };
  13.  
  14. const int C::SIZE2 = 10;
  15.